home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / editor / snmp_0_1.zip / snmp-0.1 / aka / snmp / SnmpTimeOutException.java < prev    next >
Text File  |  1997-06-09  |  817b  |  30 lines

  1. /*
  2. Snmp Library
  3. Copyright (C) 1997 Alex Kowalenko Associates Pty Ltd. All rights reserved.
  4.  
  5. This software maybe be free distributed, any any form, without fee, 
  6. but may not be modified in any way without express permission of 
  7. the directors of Alex Kowalenko Associates Pty Ltd. 
  8.  
  9. Alex Kowalenko Associates Pty Ltd makes no representations or
  10. warranties about the suitabililty of the software, not even the
  11. implied warranty of merchantability or fitness for any particular
  12. purpose.    
  13. */
  14.  
  15. package aka.snmp;
  16.  
  17. /**
  18.  * Timeout has occured in waiting for a SNMP response
  19.  * @version     $Id: SnmpTimeOutException.java,v 1.2 1997/05/12 12:17:47 alex Exp $
  20.  * @author      Alex Kowalenko
  21.  */
  22.  
  23. public class SnmpTimeOutException extends SnmpException {
  24.  
  25.     SnmpTimeOutException(String message) {
  26.     super(message);
  27.     };
  28.  
  29. };
  30.